How can I get a non-breaking space into [box] header code?
First of all, I'm a newbie to Umbraqco. I have a box header that goes "Yadda yadda ..... yadda increased by 26 %", and of course the "%" ends up on a new line all by itself. Very unaesthetic, even worse than "26%". I want the "26 %" to stay together, but entering "26 %" at the end of the header string gets rendered verbatim on the published page. All hints are highly appreciated, thanks in advance!
How can I get a non-breaking space into [box] header code?
First of all, I'm a newbie to Umbraqco. I have a box header that goes "Yadda yadda ..... yadda increased by 26 %", and of course the "%" ends up on a new line all by itself. Very unaesthetic, even worse than "26%". I want the "26 %" to stay together, but entering "26 %" at the end of the header string gets rendered verbatim on the published page. All hints are highly appreciated, thanks in advance!
Hi - how are you displaying the text, via an XSLT macro? If so, add disable-output-escaping="yes" to the value-of tag to render as HTML.
<xsl:value-of select="$currentPage/myProperty" disable-output-escaping="yes"/>
That should fix the getting written out as text, not sure it will fix your wrapping problem though..
is working on a reply...